home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 7: Sunsite / Linux Cubed Series 7 - Sunsite Vol 1.iso / system / admin / squota-0.02 / Squota.tar / Squota / Squotack < prev    next >
Text File  |  1996-05-13  |  255b  |  13 lines

  1. #!/bin/bash
  2. . /var/adm/Squota/quotavars
  3. if test $UID = 0
  4.   then
  5.   if test "$1" = "-u"
  6.     then
  7.       cat $HQ/quota.daily.$MON | grep $DAY | grep $2 |cut -d" " -f2-
  8.       exit 2
  9.   fi
  10. else
  11. cat $HQ/quota.daily.$MON | grep $DAY | grep $UID |cut -d" " -f2-
  12. fi
  13.